home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / __MANDEL / MANDELBR / CMANDELP.H1 < prev    next >
Text File  |  1992-03-25  |  249b  |  20 lines

  1. //    CMandelPictFile.h
  2.  
  3. #pragma once
  4.  
  5. #include <CDataFile.h>
  6.  
  7. class CMandelDoc;
  8.  
  9. class CMandelPictFile: public CDataFile {
  10.  
  11.     public:
  12.     
  13.         void            IMandelPictFile(CMandelDoc *);
  14.         void            WriteAll(Handle);
  15.         
  16.     protected:
  17.     
  18.         CMandelDoc *    itsMandelDoc;
  19.  
  20. };